home *** CD-ROM | disk | FTP | other *** search
/ MacWorld 1999 March - Disc 1 / Macworld (1999-03) (Disk 1).dmg / Shareware World / Utilities / Text Processing / Alpha / Tcl / Modes / browserMode.tcl < prev    next >
Encoding:
Text File  |  1998-12-06  |  4.7 KB  |  163 lines  |  [TEXT/ALFA]

  1. #=============================================================================
  2. # Browser mode.
  3. # Alpha cannot do batch searches without this file
  4. #=============================================================================
  5.  
  6. alpha::mode Brws 1.0.1 dummyBrws 
  7.  
  8. Bind '\r'        gotoMatch    Brws
  9. Bind enter        gotoMatch    Brws
  10. ascii 0x3          gotoMatch   Brws
  11. Bind down         downBrowse Brws
  12. Bind up         upBrowse Brws
  13. Bind 'n' <z>    downBrowse Brws
  14. Bind 'p' <z>    upBrowse Brws
  15. ascii 0x20        downBrowse Brws
  16. ascii 0x8        upBrowse Brws
  17. # this was below.  do we need it?
  18. Bind 'c' <Cz>        gotoMatch
  19.  
  20. proc dummyBrws {} {}
  21.  
  22. proc upBrowse {} {
  23.     set limit [nextLineStart [nextLineStart [minPos]]]
  24.     if {[pos::compare [getPos] > $limit]} {
  25.     set limit [pos::math [getPos] - 1]
  26.     }
  27.     select [lineStart $limit] [nextLineStart $limit]
  28. }
  29.  
  30. proc downBrowse {} {
  31.     set pos [getPos]
  32.     if {[pos::compare $pos < [nextLineStart [minPos]]]} {
  33.     set pos [nextLineStart [minPos]]
  34.     }
  35.     if {[pos::compare [nextLineStart $pos] != [maxPos]]} {
  36.     select [nextLineStart $pos] [nextLineStart [nextLineStart $pos]]
  37.     }
  38. }
  39.  
  40. proc nextPrevMatch {{dir 1} {wname "*Batch Find*"}} {
  41.     set wins [winNames]
  42.     set res [lsearch $wins $wname]
  43.     if {$res < 0} {
  44.     set res [lsearch -regexp $wins {\*.*\*}]
  45.     if {$res < 0} return
  46.     }
  47.     set win [lindex $wins $res]
  48.     bringToFront $win
  49.     if {$dir} {
  50.     downBrowse
  51.     } else {
  52.     upBrowse
  53.     }
  54.     gotoMatch
  55.     dispErr $win
  56. }
  57.  
  58. proc nextMatch {{wname "*Batch Find*"}} {
  59.     nextPrevMatch 1 $wname
  60. }
  61.  
  62. proc prevMatch {{wname "*Batch Find*"}} {
  63.     nextPrevMatch 0 $wname
  64. }
  65.  
  66. proc dispErr {{win "* Compiler Errors *"}} {
  67.     if {[string length $win]} {
  68.     set text [getText -w $win [getPos -w $win] [selEnd -w $win]]
  69.     if {[regexp {(Line.*)∞} $text dummy sub]} {
  70.         message "$sub"
  71.     }
  72.     }
  73. }
  74.         
  75.  
  76. ##############################################################################
  77. #  To be used in the windows created by "matchingLines" or by batch searches.
  78. #
  79. #  With the cursor positioned in a line corrsponding to a match, 
  80. #  go back and select the line in the original file that 
  81. #  generated this match.  (Like emacs 'Occur' functionality)
  82. #
  83. #  97-08-01 Now doesn't ask if you want a new copy of windows with <n>.
  84. #           Wrap dialog also skipped.
  85. proc gotoMatch {} {
  86.     if {[string match "*MAILBOX*" [win::CurrentTail]]} {
  87.     mailGotoMatch
  88.     return
  89.     }
  90.     global tileHeight tileWidth tileTop tileLeft tileHeight errorHeight errorDisp tileMargin
  91.     set text [getText [lineStart [getPos]] [pos::math [nextLineStart [getPos]] - 1]]
  92.     set ind1 [string first "∞" $text]
  93.     set ind2 [string last "∞" $text]
  94.     if {$ind1 == $ind2} {
  95.     set fname [string trim [string range $text $ind1 end] {∞}]
  96.     set msg ""
  97.     } else {
  98.     set fname [string trim [string range $text $ind1 $ind2] {∞}]
  99.     set msg [string trim [string range $text $ind2 end] {∞}]
  100.     }
  101.     
  102.     set top $tileTop
  103.     set geo [getGeometry]
  104.     if {([lindex $geo 0] != $tileLeft) || ([lindex $geo 1] != $top) || ([lindex $geo 3] != $errorHeight) } {
  105.     moveWin $tileLeft $top
  106.     sizeWin $tileWidth $errorHeight
  107.     }
  108.     set mar $tileMargin
  109.     incr top [expr $errorHeight + $mar]
  110.     if {[file exists $fname]} {
  111.     edit -c -w -g $tileLeft $top $tileWidth $errorDisp $fname
  112.     set geo [getGeometry]
  113.     if {([lindex $geo 0] != $tileLeft) || ([lindex $geo 1] != $top) || ([lindex $geo 2] != $tileWidth) || ([lindex $geo 3] != $errorDisp) } {
  114.         sizeWin $tileWidth $errorDisp
  115.         moveWin $tileLeft $top
  116.     }
  117.     } else {
  118.     if {![string match "*Link*" [getText [minPos] [nextLineStart [minPos]]]]} {
  119.         alertnote "File \" $fname \" not found." 
  120.     }
  121.     return
  122.     }
  123.     if {[regexp {Line ([0-9]+):} $text dummy line]} {
  124.     set pos [rowColToPos $line 0]
  125.     select $pos [nextLineStart $pos]
  126.     }
  127.     message $msg
  128. }
  129.  
  130. set lastMatchingLines ""
  131.  
  132. proc matchingLines {{reg ""} {for 1} {ign 1} {word 0} {regexp 1}} {
  133.     global lastMatchingLines
  134.     
  135.     if {![string length $reg] && [catch {prompt "Regular expression:" $lastMatchingLines} reg]} return
  136.     set lastMatchingLines $reg
  137.     if {![string length $reg]} return
  138.     if {!$regexp} {
  139.     set reg [quote::Regfind $reg]
  140.     }
  141.     if $word {
  142.     set reg "^.*\\b$reg\\b.*$"
  143.     } else {
  144.     set reg "^.*$reg.*$"
  145.     }
  146.     set pos [expr {$for ? [minPos] : [getPos]}]
  147.     set fileName [stripNameCount [win::Current]]
  148.     set matches 0
  149.     set lines {}
  150.     while {![catch {search -s -f 1 -r 1 -i $ign $reg $pos} mtch]} {
  151.     append lines "\r" [format "Line %d: " [lindex [posToRowCol [lindex $mtch 0]] 0]] [eval getText $mtch] "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t∞$fileName"
  152.     set pos [lindex $mtch 1]
  153.     incr matches
  154.     }
  155.     grepsToWindow {* Matching Lines *} \
  156.       [format "%d matching lines (<cr> to go to match)\r-----" $matches] \
  157.       $lines "\r"
  158. }
  159.  
  160.  
  161.  
  162.